home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: example.h 1.0 (25.06.2000)
- **
- ** main include file for example.library
- */
-
- #ifndef LIBRARIES_EXAMPLE_H
- #define LIBRARIES_EXAMPLE_H
-
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif
-
- /* This is the official part of ExampleBase. It has private fields as well. */
-
- struct ExampleBase {
- struct Library exb_LibNode;
- ULONG exb_NumCalls; /* example field */
- };
-
- #endif /* LIBRARIES_EXAMPLE_H */
-